Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

underscore.template

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

underscore.template

Extracted template from Underscore, use '_.template' without full underscore source.

  • 0.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.2K
decreased by-51.81%
Maintainers
1
Weekly downloads
 
Created
Source

underscore.template

Extracted template from Underscore, use _.template without full underscore source.

NPM version Downloads Bower version Build Status

underscore.template

Installation

NPM

npm install underscore.template

Bower

bower install underscore.template

Usage

Node.js

var UnderscoreTemplate = require('underscore.template');
var template = UnderscoreTemplate("<b><%- value %></b>");

template({value: 'hello world'});
// <b>hello world</b>

template({value: '<script>'});
// <b>&lt;script&gt;</b>

Browser

Simply download the latest minified version from the dist/ folder. API is available in a global object called UnderscoreTemplate.

<script src="./dist/underscore.template.js"></script>
var template = UnderscoreTemplate("<b><%- value %></b>");

template({value: 'hello world'});
// <b>hello world</b>

Testing

npm test

License

MIT, see the LICENSE file for detail.

Keywords

FAQs

Package last updated on 22 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc